home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 4 / The 640 Meg Shareware Studio CD-ROM Volume IV (Data Express)(1994).ISO / wp / ehp10.zip / MAKEFILE < prev    next >
Text File  |  1993-06-19  |  1KB  |  39 lines

  1. CUR_OBJS=cur_main.o cur_wfcs.o cur_wget.o
  2.  
  3. OBJECTS=aus_1.o aus_2.o aus_3.o block_1.o block_2.o config.o main.o mouse.o se.o taste.o text_1.o text_2.o window.o $(CUR_OBJS)
  4.  
  5. .c.o:
  6.     gcc -Zmt -g -c -funsigned-char -DOS2 -DMOUSE -DCUR_DIRECT $<
  7.  
  8. all: ehp km
  9.  
  10. .PHONY: ehp
  11. .PHONY: km
  12.  
  13. ehp: ehp.exe
  14. km:  km.exe
  15.  
  16. km.exe: km.o $(CUR_OBJS)
  17.     gcc -Zmt -g -o km.exe km.o $(CUR_OBJS) -los2
  18.  
  19. ehp.exe: $(OBJECTS)
  20.     gcc -Zmt -g -o ehp.exe $(OBJECTS) -los2
  21.  
  22. km.o          : curses.h
  23. aus_1.o       : curses.h defs.h
  24. aus_2.o       : curses.h defs.h
  25. aus_3.o       : curses.h defs.h keys.h
  26. block_1.o     : curses.h defs.h
  27. block_2.o     : curses.h defs.h
  28. config.o      : curses.h defs.h
  29. main.o        : curses.h defs.h
  30. mouse.o       : curses.h defs.h
  31. se.o          : curses.h defs.h
  32. taste.o       : curses.h defs.h keys.h
  33. text_1.o      : curses.h defs.h
  34. text_2.o      : curses.h defs.h
  35. window.o      : curses.h defs.h
  36. cur_main.o    : curses.h
  37. cur_wfcs.o    : curses.h
  38. cur_wget.o    : curses.h keys.h
  39.